Fix markdown links that repeat their link text unnecessarily
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>
Fri, 13 May 2016 23:40:53 +0000 (19:40 -0400)
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>
Fri, 13 May 2016 23:40:53 +0000 (19:40 -0400)
src/doc/crates-io.md
src/doc/guide.md
src/doc/specifying-dependencies.md

index ad1289049b63fc7a790ee24a4917aebca5b6465d..552971124424859b093c2defc2b6eb2e3dd3a264 100644 (file)
@@ -1,7 +1,7 @@
 % Publishing on crates.io
 
 Once you've got a library that you'd like to share with the world, it's time to
-publish it on [crates.io][crates-io]! Publishing a crate is when a specific
+publish it on [crates.io]! Publishing a crate is when a specific
 version is uploaded to be hosted on crates.io.
 
 Take care when publishing a crate, because a publish is **permanent**. The
@@ -10,8 +10,8 @@ limit to the number of versions which can be published, however.
 
 # Before your first publish
 
-First thing’s first, you’ll need an account on [crates.io][crates-io] to acquire
-an API token. To do so, [visit the home page][crates-io] and log in via a GitHub
+First thing’s first, you’ll need an account on [crates.io] to acquire
+an API token. To do so, [visit the home page][crates.io] and log in via a GitHub
 account (required for now). After this, visit your [Account
 Settings](https://crates.io/me) page and run the `cargo login` command
 specified.
@@ -214,4 +214,4 @@ the “Grant Access” button next to its name:
 
 ![Authentication Access Control](images/auth-level-acl.png)
 
-[crates-io]: https://crates.io/
+[crates.io]: https://crates.io/
index 96252483be4e3f1bf22f2a3ad29ac0c341393353..4afc3de6474a693fb68d5073dc92852057ef1a7a 100644 (file)
@@ -129,13 +129,13 @@ project.
 
 # Adding Dependencies from crates.io
 
-[crates.io][crates-io] is the Rust community's central repository that serves
+[crates.io] is the Rust community's central repository that serves
 as a location to discover and download packages. `cargo` is configured to use
 it by default to find requested packages.
 
 To depend on a library hosted on [crates.io], add it to your `Cargo.toml`.
 
-[crates-io]: https://crates.io/
+[crates.io]: https://crates.io/
 
 ## Adding a dependency
 
@@ -148,7 +148,7 @@ adds a dependency of the `time` crate:
 time = "0.1.12"
 ```
 
-The version string is a [semver][semver] version requirement. The [specifying
+The version string is a [semver] version requirement. The [specifying
 dependencies](specifying-dependencies.html) docs have more information about
 the options you have here.
 
index 5f1601623c3b9e5f3e33d65b5a4ccba2833963f9..f0f8365bb3fefb4c31432473132d799dc6814a7f 100644 (file)
@@ -18,7 +18,7 @@ guide](guide.html), we specified a dependency on the `time` crate:
 time = "0.1.12"
 ```
 
-The string `"0.1.12"` is a [semver][semver] version requirement. Since this
+The string `"0.1.12"` is a [semver] version requirement. Since this
 string does not have any operators in it, it is interpreted the same way as
 if we had specified `"^0.1.12"`, which is called a caret requirement.